home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / intoids.lha / Intoids 1.0 / Intoids.readme < prev    next >
Text File  |  1997-02-13  |  2KB  |  42 lines

  1. Short: Efficient large & small integer math+IO.
  2. Uploader: agmsmith@Achilles.net
  3. Author: agmsmith@FreeNet.Carleton.ca
  4. Type: util/libs
  5. Version: 1.0
  6.  
  7. Intoids.library is an Amiga runtime shared code library for efficiently
  8. handling arbitrarily large integers without making things slow for
  9. small integer values.
  10.  
  11. * Small integers (+-0x3FFFFFFF) are encoded directly into a pointer
  12.   sized field, avoiding the need for memory allocations.  Larger values
  13.   store a pointer to the value in the same sized field.  The end
  14.   programmer doesn't need to be aware of the difference, it is
  15.   automatically handled and always fits convieniently in 32 bits.
  16.  
  17. * There are functions for reading and writing the AGMS Portable Integer
  18.   binary file format.  Arbitrary integers are compactly written to or
  19.   read from a stream or buffer.
  20.  
  21. * Besides integers as large as 1048576 bits (a megabit), infinity and
  22.   not-a-number can also be represented.
  23.  
  24. * Language localisation for error messages and special numbers (like
  25.   "infinity") is possible through locale.library.
  26.  
  27. * Source code is included.  There's lots of documentation, including
  28.   Autodoc descriptions of all the functions and file formats.
  29.  
  30. * Distributed under the GNU library general public license.
  31.  
  32. * Include files and glue are available for SAS C and GNU C.  A .FD file
  33.   is also included so you can make bindings for other compilers.
  34.  
  35. * Does basic math: +,-,*,/, the usual comparisons, allocation functions
  36.   and conversions between ASCII text, 32 bit integers and the AGMS
  37.   Portable Integer Format.  Other functions are easily adapted from
  38.   the GNU large integer library (the origin for the math code, source
  39.   included too), if you need them.
  40.  
  41. - Alex
  42.